home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / skins / Border.as next >
Text File  |  2014-03-27  |  510b  |  26 lines

  1. package mx.skins
  2. {
  3.    import mx.core.EdgeMetrics;
  4.    import mx.core.IBorder;
  5.    import mx.core.mx_internal;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class Border extends ProgrammaticSkin implements IBorder
  10.    {
  11.       
  12.       mx_internal static const VERSION:String = "3.0.0.0";
  13.        
  14.       
  15.       public function Border()
  16.       {
  17.          super();
  18.       }
  19.       
  20.       public function get borderMetrics() : EdgeMetrics
  21.       {
  22.          return EdgeMetrics.EMPTY;
  23.       }
  24.    }
  25. }
  26.